home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
tuningentry.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
1KB
|
26 lines
/* RCSVER $Id: tuningentry.sql,v 1.4 1999-02-24 16:20:49-06 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: tuningentry.sql
* Date: 12/28/1998
* memo: Randy Wood
* Description: Create the tuningentry table. This table contains
* constraint information for all tuning values entered in
* free format in a text field.
* Changes:
************************************************************************* */
CREATE TABLE tuningentry
(
name VARCHAR2(30), /* Name of tuning variable */
minval NUMBER(38), /* Minimum allowable value */
maxval NUMBER(38), /* Maximum allowable value */
numdigits NUMBER(38), /* Max number of digits */
config_num NUMBER(38)
CONSTRAINT ref_tuningentry2 REFERENCES configset(num)
ON DELETE CASCADE,
CONSTRAINT fk_tuningentry FOREIGN KEY (name, config_num) REFERENCES
fbtuning(name, config_num) ON DELETE CASCADE,
CONSTRAINT pk_tuningentry PRIMARY KEY (name, config_num)
);